home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000165_news@columbia.edu _Fri Dec 29 15:42:36 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id PAA17125
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 29 Dec 2000 15:42:36 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA15417
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 29 Dec 2000 15:42:35 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id PAA15078
  10.     for kermit.misc@watsun.cc.columbia.edu; Fri, 29 Dec 2000 15:42:08 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: dmf@cs.uchicago.edu (Derek M. Flynn)
  13. Subject: Re: Converting struct tm to time_t
  14. Message-ID: <slrn94ptmd.abl.dmf@gargoyle.cs.uchicago.edu>
  15. Organization: The University of Chicago
  16. Date: Fri, 29 Dec 2000 20:40:39 GMT
  17. To: kermit.misc@columbia.edu
  18.  
  19. Andrew Gierth wrote:
  20.  
  21. > at least some systems have a timegm() function which is the UTC
  22. > equivalent of mktime(). For those that don't, the straightforward
  23. > calculation method is probably sufficient, though an alternative
  24. > might be to do putenv("TZ=GMT0"); and then use mktime()....
  25.  
  26. Don't forget to call tzset() after putenv and before mktime
  27.